-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add startupProbe and replace readiness probe with liveness probe #5407
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
github-actions
bot
added
size/XS
area/core
This issue/PR affects the core codebase
area/helper
This issue/PR affects the helper functionality
labels
Nov 17, 2022
Codecov Report
@@ Coverage Diff @@
## master #5407 +/- ##
===========================================
+ Coverage 68.77% 85.88% +17.11%
===========================================
Files 99 101 +2
Lines 6680 6724 +44
===========================================
+ Hits 4594 5775 +1181
+ Misses 2086 949 -1137
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Signed-off-by: Joan Fontanals Martinez <joan.martinez@jina.ai>
JoanFM
force-pushed
the
health_servicer_thread
branch
from
November 17, 2022 15:44
394069a
to
32dcbc2
Compare
github-actions
bot
added
size/S
area/cicd
This issue/PR affects the cicd pipeline
area/housekeeping
This issue/PR is housekeeping
area/testing
This issue/PR affects testing
labels
Nov 17, 2022
JoanFM
force-pushed
the
health_servicer_thread
branch
3 times, most recently
from
November 17, 2022 18:24
b82180b
to
75c88b8
Compare
Signed-off-by: Joan Fontanals Martinez <joan.martinez@jina.ai>
JoanFM
force-pushed
the
health_servicer_thread
branch
from
November 17, 2022 20:35
75c88b8
to
89d9645
Compare
girishc13
reviewed
Nov 18, 2022
I will add another test for this |
Signed-off-by: Joan Fontanals Martinez <joan.martinez@jina.ai>
JoanFM
force-pushed
the
health_servicer_thread
branch
from
November 21, 2022 10:33
edcb1f1
to
308a3fa
Compare
github-actions
bot
added
area/cli
This issue/PR affects the command line interface
area/docker
This issue/PR affects the docker functionality
area/setup
This issue/PR affects setting up Jina
labels
Nov 25, 2022
github-actions
bot
removed
area/cli
This issue/PR affects the command line interface
area/setup
This issue/PR affects setting up Jina
labels
Dec 1, 2022
girishc13
changed the title
feat: add livenessProbe and startupProbe
feat: add startupProbe
Dec 1, 2022
girishc13
changed the title
feat: add startupProbe
feat: add startupProbe and replace readiness probe with liveness probe
Dec 1, 2022
This reverts commit 4d4a05a.
github-actions
bot
removed
the
area/docker
This issue/PR affects the docker functionality
label
Dec 7, 2022
girishc13
approved these changes
Dec 7, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/core
This issue/PR affects the core codebase
area/helper
This issue/PR affects the helper functionality
area/testing
This issue/PR affects testing
component/client
component/resource
size/L
size/M
size/S
size/XS
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Goals:
Now, while Requests are being processed, the
event loop
of Worker is blocked andreadinessProbe
can start failing if Requests block the event loop too long (Executor methods taking long)Resolves #5470